home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / src / ConfigFileSrc.lha / ConfigFileSrc12 / Library / Funcs / Unlock.c < prev    next >
Encoding:
Text File  |  1997-10-02  |  2.2 KB  |  94 lines

  1. /*
  2. **        $PROJECT: ConfigFile.library
  3. **        $FILE: Unlock.c
  4. **        $DESCRIPTION: cf_Unlock#?() functions
  5. **
  6. **        (C) Copyright 1996-1997 Marcel Karas
  7. **             All Rights Reserved.
  8. */
  9.  
  10. #undef cf_UnlockArgList
  11. #undef cf_UnlockGrpList
  12. #undef cf_UnlockItemList
  13.  
  14. /****** configfile.library/cf_UnlockArgList **********************************
  15. *
  16. *   NAME
  17. *        cf_UnlockArgList -- Unlocks the argument list of the group node.
  18. *
  19. *   SYNOPSIS
  20. *        cf_UnlockArgList(GrpNode);
  21. *                         A0
  22. *
  23. *        VOID cf_UnlockArgList(CFGroup *);
  24. *
  25. *   FUNCTION
  26. *        This function unlocks the access on the argument list.
  27. *
  28. *   INPUTS
  29. *        GrpNode - The group node for the argument list.
  30. *
  31. *   SEE ALSO
  32. *        cf_UnlockGrpList(), cf_UnlockItemList(), cf_LockArgList()
  33. *
  34. ******************************************************************************
  35. *
  36. */
  37.  
  38. SLibCall VOID cf_UnlockArgList ( REGA0 iCFGroup * GrpNode )
  39. { return; }
  40.  
  41. /****** configfile.library/cf_UnlockGrpList **********************************
  42. *
  43. *   NAME
  44. *        cf_UnlockGrpList -- Unlocks the group list of the header.
  45. *
  46. *   SYNOPSIS
  47. *        cf_UnlockGrpList(Header);
  48. *                         A0
  49. *
  50. *        VOID cf_UnlockGrpList(CFHeader *);
  51. *
  52. *   FUNCTION
  53. *        This function unlocks the access on the group list.
  54. *
  55. *   INPUTS
  56. *        Header - Pointer to the CFHeader structure.
  57. *
  58. *   SEE ALSO
  59. *        cf_UnlockArgList(), cf_UnlockItemList(), cf_LockGrpList()
  60. *
  61. ******************************************************************************
  62. *
  63. */
  64.  
  65. SLibCall VOID cf_UnlockGrpList ( REGA0 iCFHeader * Header )
  66. { return; }
  67.  
  68. /****** configfile.library/cf_UnlockItemList *********************************
  69. *
  70. *   NAME
  71. *        cf_UnlockItemList -- Unlocks the item list of the argument node.
  72. *
  73. *   SYNOPSIS
  74. *        cf_UnlockItemList(ArgNode);
  75. *                          A0
  76. *
  77. *        VOID cf_UnlockItemList(CFArgument *);
  78. *
  79. *   FUNCTION
  80. *        This function unlocks the access on the item list.
  81. *
  82. *   INPUTS
  83. *        ArgNode - The argument node for item list.
  84. *
  85. *   SEE ALSO
  86. *        cf_UnlockArgList(), cf_UnlockGrpList(), cf_LockItemList()
  87. *
  88. ******************************************************************************
  89. *
  90. */
  91.  
  92. SLibCall VOID cf_UnlockItemList ( REGA0 iCFArgument * ArgNode )
  93. { return; }
  94.